TryGetArray<T>(IPdfArray,Int32,T[],Boolean) Method
In This Topic
Tries to get the array at the specified index, if the value does not exist or cannot be converted to an array of returns false.
Syntax
'Declaration
Public Overloads Shared Function TryGetArray(Of As IPdfObject)( _
ByVal As IPdfArray, _
ByVal As System.Integer, _
ByRef () As , _
Optional ByVal As System.Boolean _
) As System.Boolean
public static System.bool TryGetArray<>(
IPdfArray ,
System.int ,
out [] ,
System.bool
)
where T: IPdfObject
Parameters
- array
- The current array.
- index
- The index of the value to get.
- value
- OUT: The value.
- singleToArray
- Indicates whether to convert a single value to an array.
Type Parameters
- T
Return Value
true if value exists, false otherwise.
See Also